home *** CD-ROM | disk | FTP | other *** search
/ TOS Silver 2000 / TOS Silver 2000.iso / Anwendun / Pov / POV302 / MANUAL / DOCSDEMO / PRISMDM4.POV < prev    next >
Encoding:
Text File  |  1997-01-20  |  396 b   |  25 lines

  1. #include "colors.inc"
  2.  
  3. camera {  
  4.   angle 20
  5.   location <2, 10, -30>
  6.   look_at <0, 1, 0>
  7. }
  8.  
  9. light_source { <20, 20, -20> color White }
  10.  
  11. prism { 
  12.   conic_sweep
  13.   linear_spline
  14.   0, // height 1
  15.   1, // height 2
  16.   5, // the number of points making up the shape...
  17.  
  18.   <4,4>,<-4,4>,<-4,-4>,<4,-4>,<4,4>
  19.  
  20.   rotate <180, 0, 0>
  21.   translate <0, 1, 0>
  22.   scale <1, 4, 1>
  23.   pigment { gradient y scale .2 }
  24. }
  25.